home *** CD-ROM | disk | FTP | other *** search
/ Giga Games 1 / Giga Games.iso / net / hack / 2_3 / nethack.sh < prev    next >
Encoding:
Linux/UNIX/POSIX Shell Script  |  1993-06-20  |  219 b   |  16 lines

  1. #!/bin/sh
  2. #    SCCS Id: @(#)nethack.sh    1.4    87/08/08
  3. HACKDIR=/usr/games/lib/nethackdir
  4. HACK=$HACKDIR/nethack
  5. MAXNROFPLAYERS=4
  6.  
  7. cd $HACKDIR
  8. case $1 in
  9.     -s*)
  10.         exec $HACK $@
  11.         ;;
  12.     *)
  13.         exec $HACK $@ $MAXNROFPLAYERS
  14.         ;;
  15. esac
  16.